AzureFunctions.Code.FileSystemHelpers.FileExists C# (CSharp) Метод

FileExists() публичный статический Метод

public static FileExists ( string path ) : bool
path string
Результат bool
        public static bool FileExists(string path)
        {
            return File.Exists(path);
        }
    }