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

操作系统开发

开发平台:

DOS

  1. #include <string.h>
  2. #include <io.h>
  3. #include <stdio.h>
  4. #include <rtos.h>
  5. #include <filename.h>
  6. main()
  7. {
  8.     char *test = "c:\brown.dog\white.cat\file.ext";
  9.     char buffer[ 128 ];
  10.     rt_init( 100 );
  11.     cprintf("starting with     : %srn", test );
  12.     FileGetPath( test, buffer );
  13.     cprintf("Path              = %srn", buffer );
  14.     FileGetName( test, buffer );
  15.     cprintf("Name              = %srn", buffer );
  16.     cprintf("Extension         = %srn", FileGetExt( test ));
  17.     FileChangeExt( test, "ok", buffer );
  18.     cprintf("Path with ext .ok = %srn", buffer );
  19.     cprintf( "test14.exe : file %srn",
  20.         FileExists( "test14.exe" ) ? "exists" : "missing");
  21.     /* you can rename a file with a function like this */
  22. //   FileRenameExt( "c:\test\x.x",".new");
  23. }