Brod.Storage.Segment.CreateEmptyFile C# (CSharp) Method

CreateEmptyFile() private method

Creates empty file with specified path and name
private CreateEmptyFile ( string filePath ) : void
filePath string
return void
        private void CreateEmptyFile(string filePath)
        {
            if (!File.Exists(filePath))
                using (File.Create(filePath)) { }
        }