filesystem.h 331 B

1234567891011121314151617181920212223242526
  1. #ifndef BB_FILESYSTEM_H
  2. #define BB_FILESYSTEM_H
  3. #include <bbmonkey.h>
  4. #include <bbplatform.h>
  5. namespace bbFileSystem{
  6. bbString appDir();
  7. bbString appPath();
  8. bbArray<bbString> appArgs();
  9. bbBool copyFile( bbString srcPath,bbString dstPath );
  10. #if BB_IOS
  11. bbString getSpecialDir( bbString name );
  12. #endif
  13. }
  14. #endif