Создание файла с использованием скрипта Vb - PullRequest
0 голосов
/ 17 июня 2010

Мне нужен VB-скрипт, который создаст текстовый файл с именем «listitem» в C: \ Documents and Settings \ All Users \ Application Data \ second \ smartapp до C: \ Documents and Settings \ Все пользователи \ Данные приложения \ мы можем сделать это как 'CommonAppDataFolder'

Кто-нибудь знает об этом

Ответы [ 2 ]

1 голос
/ 17 июня 2010

Вот несколько советов для вас:

Надеюсь, вы сможете управлять остальными самостоятельно.:)

1 голос
/ 17 июня 2010

ОК, посмотрим, смогу ли я вспомнить, как это сделать ...

Dim fso 'As Scripting.FileSystemObject
Dim stream 'As Scripting.TextStream

Set fso = CreateObject("Scripting.FileSystemObject")

'Check that the secon folder exists
If fso.FolderExists("C:\Documents and Settings\All Users\Application Data\secon") Then
Else
    fso.CreateFolder("C:\Documents and Settings\All Users\Application Data\secon")
End If

'Check that the smartapp folder exists
If fso.FolderExists("C:\Documents and Settings\All Users\Application Data\secon\smartapp") Then
Else
    fso.CreateFolder("C:\Documents and Settings\All Users\Application Data\secon\smartapp")
End If

'Create the file as ASCII text, overwrite it if it already exists
Set stream = fso.CreateTextFile("C:\Documents and Settings\All Users\Application Data\secon\smartapp\listitem.txt", true, false)

'Close it neatly
stream.Close

'Clean up
Set stream = Nothing
Set fso = Nothing
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...