What command can display the file system type, such as FAT32 or NTFS?
[ Last edited by slx8528 on 2009-2-8 at 17:21 ]
[ Last edited by slx8528 on 2009-2-8 at 17:21 ]
Union site: www.cn-dos.net Forum site: www.cn-dos.net/forum
DOS stands for freedom, openness and progress. Let us work hard, learn from the openness and GNU spirit of FreeDOS and Linux, and together build and grow a free GNU GPL world!
| Rater | Score | Time |
|---|---|---|
| slx8528 | +1 | 2009-02-08 17:18 |
type nul>"C:\isntfs.txt"&&cacls "C:\isntfs.txt" /g everyone:f /e>nul&&echo NTFS partition||echo non-NTFS partition(chkntfs C:|findstr /i "NTFS")||(chkntfs C:|findstr /i "FAT32")wmic logicaldisk where name='C:' get FileSystem /value@echo off
for /f "skip=3 delims=/" %%a in ('fsutil fsinfo volumeinfo C:\') do (
echo %%a
goto :eof
)