Jump to content

File not closing?


Recommended Posts

I have this:

$test = "c:\temp.bat"
FileOpen ( $test, 2 ) 
FileWrite ( $test, "@echo off" ) 
FileWrite ( $test, @crlf ) 
FileWrite ( $test, echo hello ) 
FileWrite ( $test, @crlf ) 
FileWrite ( $test, "testing.exe > C:\testing.txt" ) 
FileClose ( $test ) 

Run ( "C:\temp.bat" )

When it gets to running, it says the file is being used..

Link to comment
Share on other sites

If you search around, you'll notice that this has been discussed before.

At a second glance, I notice that you did not use a file handle:

$testfile = "c:\temp.bat"
$test = FileOpen ( $testfile, 2 ) 
FileWrite ( $test, "@echo off" ) 
FileWrite ( $test, @crlf ) 
FileWrite ( $test, "echo hello" ) 
FileWrite ( $test, @crlf ) 
FileWrite ( $test, "testing.exe > C:\testing.txt" ) 
FileClose ( $test )

Run ( "C:\temp.bat" )

#)

edit: also noticed that your FileWrite ( $test, echo hello ) line was wrong

Edited by nfwu
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...