FILENAME.H
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:1k
源码类别:

操作系统开发

开发平台:

DOS

  1. //----------------------------------------------------------------------
  2. // FileGetPath - copies a file's path (but not file name) to a new location
  3. void FileGetPath( char *filename, char *buffer );
  4. //----------------------------------------------------------------------
  5. // FileGetName - copies a file's name (discarding path) and ext to new location
  6. void FileGetName( char *filename, char *buffer );
  7. //----------------------------------------------------------------------
  8. // FileGetExt - returns pointer to extension within this filename
  9. //            - if no extension, returns pointer to "" so still usable string
  10. char *FileGetExt( char *filename );
  11. //----------------------------------------------------------------------
  12. // FileChangeExt - copy apply a new extension to a file name
  13. //               - accepts .ext or ext
  14. void FileChangeExt( const char *filename, const char *newext, char *buffer );
  15. //----------------------------------------------------------------------
  16. // FileExists - returns 1 if true
  17. int FileExists( const char *filename );
  18. //----------------------------------------------------------------------
  19. // FileRenameExt - renames file to a given extension in same directory
  20. int FileRenameExt( char *filename, char *newext );