Steamworks.SteamRemoteStorage.FilePersist C# (CSharp) Method

FilePersist() public static method

Indicate this file should be persisted in the next sync

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