Steamworks.SteamRemoteStorage.FileDelete C# (CSharp) Method

FileDelete() public static method

public static FileDelete ( string pchFile ) : bool
pchFile string
return bool
		public static bool FileDelete(string pchFile) {
			InteropHelp.TestIfAvailableClient();
			using (var pchFile2 = new InteropHelp.UTF8StringHandle(pchFile)) {
				return NativeMethods.ISteamRemoteStorage_FileDelete(pchFile2);
			}
		}