Steamworks.SteamRemoteStorage.GetFileTimestamp C# (CSharp) Method

GetFileTimestamp() public static method

public static GetFileTimestamp ( string pchFile ) : long
pchFile string
return long
		public static long GetFileTimestamp(string pchFile) {
			InteropHelp.TestIfAvailableClient();
			using (var pchFile2 = new InteropHelp.UTF8StringHandle(pchFile)) {
				return NativeMethods.ISteamRemoteStorage_GetFileTimestamp(pchFile2);
			}
		}