Esto usa GetCompressedFileSize, como sugirió ho1, así como GetDiskFreeSpace, como sugirió PaulStack, sin embargo, usa P / Invoke. Lo he probado solo para archivos comprimidos y sospecho que no funciona para archivos 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
no parece que pueda manejar ningún tipo de enlaces del sistema de archivos. Por lo tanto, solo funciona en letras de unidades locales clásicas sin enlaces simbólicos / enlaces físicos / puntos de unión o lo que sea que NTFS tenga para ofrecer.System.ComponentModel
ySystem.Runtime.InteropServices
.El código anterior no funciona correctamente en sistemas basados en Windows Server 2008 o 2008 R2 o Windows 7 y Windows Vista, ya que el tamaño del clúster es siempre cero (GetDiskFreeSpaceW y GetDiskFreeSpace devuelven -1 incluso con UAC desactivado). Aquí está el 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
fuente
.First()
ya que es unIEnumerable
y no unIEnumerable<T>
, si desea usar el código en la primera llamada.Cast<object>()
Según los foros sociales de MSDN:
Consulte Cómo obtener el tamaño en disco de un archivo en C # .
Pero tenga en cuenta el hecho de que esto no funcionará en NTFS cuando la compresión esté activada.
fuente
GetCompressedFileSize
lugar defilelength
tener en cuenta los archivos comprimidos y / o dispersos.Creo que será así:
double ifileLength = (finfo.Length / 1048576); //return file size in MB ....
Todavía estoy haciendo algunas pruebas para esto, para obtener una confirmación.
fuente