CSharpUtils.VirtualFileSystem.Utils.Synchronizer.RemoveFile C# (CSharp) Метод

RemoveFile() защищенный Метод

protected RemoveFile ( String PathFileName ) : void
PathFileName String
Результат void
		protected void RemoveFile(String PathFileName)
		{
			try
			{
				DestinationFileSystem.DeleteFile(FileSystem.CombinePath(DestinationPath, PathFileName));
			}
			catch (Exception Exception)
			{
				Console.WriteLine("Error deleting file '{0}' : {1}", FileSystem.CombinePath(DestinationPath, PathFileName), Exception.Message);
			}
		}