Loading

摘要: for example:C:\A | |__B | |__C | |__...How do I get the latest modified folder path in (B, C,....)?A:FOR /F "tokens=*" %%A IN ('dir /A:D /O:D /T:W /B') DO SET LastModified=%%Aor just use this:FOR /F %%A IN ('dir c:\a /A:D /O:D /T:W /B') DO SET LastModified=%%Abatch file:@ec 阅读全文
posted @ 2011-06-01 21:47 .net's 阅读(452) 评论(0) 推荐(0)
摘要: InMicrosoft Test and Lab Manager, the above error message is observed during the execution of an automated test run on a test controller. It can occur in either of the following conditions.1. The account under which test controller is running does not have read permission on the build directory. (Th 阅读全文
posted @ 2011-06-01 20:19 .net's 阅读(473) 评论(0) 推荐(0)