Jump to content

Recommended Posts

Posted

Is there any way to get the filename from the variable pointing to the opened file?

: $file=fileopen("something.txt")

How can I get the "something.txt" from $file ?

Should I use another variable to keep the name of the opened file?

: $filename="something.txt"

: $file=fileopen($filename,0)

Posted

$filename="something.txt"
$file=fileopen($filename,0)
This is probably the most intuitive way to do this. That way, if you need to display the file name somewhere in your program, you're not dealing with a hard coded string.

Auto3Lib: A library of over 1200 functions for AutoIt

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
×
×
  • Create New...