filesystem.h 240 B

123456789101112131415161718
  1. #ifndef BB_FILESYSTEM_H
  2. #define BB_FILESYSTEM_H
  3. #include <bbmonkey.h>
  4. namespace bbFileSystem{
  5. bbString appDir();
  6. bbString appPath();
  7. bbArray<bbString> appArgs();
  8. bbBool copyFile( bbString srcPath,bbString dstPath );
  9. }
  10. #endif