Este usa GetCompressedFileSize, como sugerido por ho1, bem como GetDiskFreeSpace, como sugeriu PaulStack, mas usa P / Invoke. Testei-o apenas para arquivos compactados e suspeito que não funcione com arquivos fragmentados.
public static long GetFileSizeOnDisk(string file)
{
FileInfo info = new FileInfo(file);
uint dummy, sectorsPerCluster, bytesPerSector;
int result = GetDiskFreeSpaceW(info.Directory.Root.FullName, out sectorsPerCluster, out bytesPerSector, out dummy, out dummy);
if (result == 0) throw new Win32Exception();
uint clusterSize = sectorsPerCluster * bytesPerSector;
uint hosize;
uint losize = GetCompressedFileSizeW(file, out hosize);
long size;
size = (long)hosize << 32 | losize;
return ((size + clusterSize - 1) / clusterSize) * clusterSize;
}
[DllImport("kernel32.dll")]
static extern uint GetCompressedFileSizeW([In, MarshalAs(UnmanagedType.LPWStr)] string lpFileName,
[Out, MarshalAs(UnmanagedType.U4)] out uint lpFileSizeHigh);
[DllImport("kernel32.dll", SetLastError = true, PreserveSig = true)]
static extern int GetDiskFreeSpaceW([In, MarshalAs(UnmanagedType.LPWStr)] string lpRootPathName,
out uint lpSectorsPerCluster, out uint lpBytesPerSector, out uint lpNumberOfFreeClusters,
out uint lpTotalNumberOfClusters);
FileInfo.Directory.Root
não parece que possa lidar com qualquer tipo de link de sistema de arquivos. Portanto, ele só funciona em letras de unidade locais clássicas sem links simbólicos / links físicos / pontos de junção ou o que o NTFS tem a oferecer.System.ComponentModel
eSystem.Runtime.InteropServices
.O código acima não funciona corretamente no Windows Server 2008 ou 2008 R2 ou nos sistemas baseados no Windows 7 e Windows Vista, pois o tamanho do cluster é sempre zero (GetDiskFreeSpaceW e GetDiskFreeSpace retornam -1 mesmo com o UAC desativado.) Aqui está o código modificado que funciona.
C #
public static long GetFileSizeOnDisk(string file) { FileInfo info = new FileInfo(file); uint clusterSize; using(var searcher = new ManagementObjectSearcher("select BlockSize,NumberOfBlocks from Win32_Volume WHERE DriveLetter = '" + info.Directory.Root.FullName.TrimEnd('\\') + "'") { clusterSize = (uint)(((ManagementObject)(searcher.Get().First()))["BlockSize"]); } uint hosize; uint losize = GetCompressedFileSizeW(file, out hosize); long size; size = (long)hosize << 32 | losize; return ((size + clusterSize - 1) / clusterSize) * clusterSize; } [DllImport("kernel32.dll")] static extern uint GetCompressedFileSizeW( [In, MarshalAs(UnmanagedType.LPWStr)] string lpFileName, [Out, MarshalAs(UnmanagedType.U4)] out uint lpFileSizeHigh);
VB.NET
Private Function GetFileSizeOnDisk(file As String) As Decimal Dim info As New FileInfo(file) Dim blockSize As UInt64 = 0 Dim clusterSize As UInteger Dim searcher As New ManagementObjectSearcher( _ "select BlockSize,NumberOfBlocks from Win32_Volume WHERE DriveLetter = '" + _ info.Directory.Root.FullName.TrimEnd("\") + _ "'") For Each vi As ManagementObject In searcher.[Get]() blockSize = vi("BlockSize") Exit For Next searcher.Dispose() clusterSize = blockSize Dim hosize As UInteger Dim losize As UInteger = GetCompressedFileSizeW(file, hosize) Dim size As Long size = CLng(hosize) << 32 Or losize Dim bytes As Decimal = ((size + clusterSize - 1) / clusterSize) * clusterSize Return CDec(bytes) / 1024 End Function <DllImport("kernel32.dll")> _ Private Shared Function GetCompressedFileSizeW( _ <[In](), MarshalAs(UnmanagedType.LPWStr)> lpFileName As String, _ <Out(), MarshalAs(UnmanagedType.U4)> lpFileSizeHigh As UInteger) _ As UInteger End Function
fonte
.First()
, pois é umIEnumerable
e não umIEnumerable<T>
, se você quiser usar o código, primeiro chame.Cast<object>()
De acordo com os fóruns sociais do MSDN:
Veja Como obter o tamanho no disco de um arquivo em C # .
Mas observe o ponto que isso não funcionará em NTFS onde a compressão está ativada.
fonte
GetCompressedFileSize
vez defilelength
contabilizar arquivos compactados e / ou esparsos.Acho que vai ser assim:
double ifileLength = (finfo.Length / 1048576); //return file size in MB ....
Ainda estou fazendo alguns testes para obter uma confirmação.
fonte