当前位置:  开发笔记 > 开发工具 > 正文

如何找到Windows中使用的文件系统?最好是代码

如何解决《如何找到Windows中使用的文件系统?最好是代码》经验,为你挑选了1个好方法。

如何找出Windows中使用的文件系统类型?最好是代码.



1> John Boker..:
function string get_FileSystem( strPath )
  object objFSO, objDrive;
begin
  set objFSO = CreateObject ( "Scripting.FileSystemObject" );
  if ( IsObject (objFSO) ) then
    try
      set objDrive = objFSO.GetDrive( objFSO.GetDriveName( strPath ) );
      if ( IsObject( objDrive ) ) then
        //Available return types include FAT, NTFS, FAT, FAT32, and CDFS
        return objDrive.FileSystem;
      endif;
    catch
      MessageBox( "Unable to determine File System.", INFORMATION );
    endcatch;
  endif;
end;

这是来自http://kb.acresso.com/selfservice/viewContent.do?externalID=Q107782

推荐阅读
喜生-Da
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有