Business.DownloadBusiness.FileHasContent C# (CSharp) Метод

FileHasContent() приватный Метод

Returns whether specified file exists and contains data (at least 500KB).
private FileHasContent ( string fileName ) : bool
fileName string The path of the file to check.
Результат bool
        private bool FileHasContent(string fileName) {
            return File.Exists(fileName) && new FileInfo(fileName).Length > 524288;
        }