2012-02-14 5 views
0

私は、PSTマシンで作成/変更されるファイルを持っています。しかし、インドの標準時からこのファイルにアクセスしているときは、現在のシステムのタイムゾーンに従って修正日が返されます。 (hereが説明したように)タイムゾーンがJscriptで特定のタイムゾーンに関するファイルのファイルの日付を変更するにはどうすればよいですか?

var WshShell = Sys.OleObject("WScript.Shell"); 
var fso = new ActiveXObject("Scripting.FileSystemObject");   
var objFile = fso.GetFile("c:\\abc.txt"); 
var date = objFile.DateLastModified + ""; 

答えて

0

はい、あなたはVBSでのDateDiff関数でこれを行うに提供し、私が尊敬してこの日付を取得することができますどのような方法があります:

http://www.devguru.com/technologies/vbscript/quickref/datediff.html

DevGuruは、情報

あなたはこのようにそれを行うことができますJavaScriptで
DateDiff(Interval, Date1, Date2, FirstDayofWeek, FirstWeekofYear) 

The DateDiff function calculates the amount of time between two different dates. 
There are three mandatory arguments. 

Interval 

The Interval argument defines the the type of time interval you wish to use to 
calculate the time difference. 

Only the following settings can be used. You must place the setting inside a 
pair of double quotes. 

| SETTING | DESCRIPTION | 
|:--------|:-------------| 
| YYYY | Year   | 
| Q  | Quarter  | 
| M  | Month  | 
| Y  | Day Of Year | 
| D  | Day   | 
| W  | WeekDay  | 
| WW  | Week Of Year | 
| H  | Hour   | 
| N  | Minute  | 
| S  | Second  | 

How to calculate date difference in javascript

+1

ありがとうございます。これは私が正確に探しているものではありませんが、これは解決策を得るのに役立ちます – satya

+1

devguruリンクが動作しない – manuel

+0

Nathan - そのdevguru.comページの内容の一部をあなたの答えにコピーするアイデアかもしれません。死んでいるリンクの場合には役に立たない。その他 - その間は、http://web.archive.org/web/20121225140115/http://www.devguru.com/technologies/vbscript/quickref/datediff.htmlを試してください。 – user66001