Search the Community
Showing results for tags 'FileOpen'.
-
Junior Programmer here... Not much experience with opening, changing and closing files. I am trying to replace strings in a Text file except StringReplace does not actually replace the text. Here is a sample of my code... #include <File.au3> #include <MsgBoxConstants.au3> #includ...
- 19 replies
-
- stringreplace
- fileopen
-
(and 1 more)
Tagged with:
-
Hi to all, I am writing a feature to an existing internal AutoIt program, based on a client's request. The requested feature would be to grab the file via a button, which reads the file's path. Below the file browsing button would be a button to upload the file into a MySQL server. Initially,...
- 2 replies
-
- binarydata
- blob
-
(and 5 more)
Tagged with:
-
I have a good handle on how to read a file line by line, and search for a given string. Basically using, FileOpen, FileReadLine, and StringInStr. I have been trying to figure out why my search keeps coming back with no match. For example, if my string line was "Where is Waldy", and I...
- 7 replies
-
- stringinstr
- filereadline
-
(and 1 more)
Tagged with:
-
This doesn't work, it deletes (overwrites) file contents: $hFile = FileOpen("file.txt", 2) $content1 = FileRead($hFile) $content2 = StringReplace($content1, "old", "new") FileWrite($hFile, $content2) FileClose($hFile) Why? Instead, I have to use this workaround: $hFile = FileOpen("file.tx...
-
Howdy Everyone! I've been scouring the forum for something that works... and no dice yet... hoping to stop the frustration - hope someone in the forum knows what to do. Basically, I've saved .msg files out of MS Outlook and want to scan each on for email addresses but all I get with fileopen and fil...
-
Good Morning All, I'm hoping someone here can work their AutoIT magic I'm doing a pretty "simple" string search in a HUGE variable. But I'm doing the basics almost straight out of the Help File... ( sorry, I'm leaving out my main code for privacy reasons ) Local $hFileOpen = FileOpen($sFilePath, $...
- 11 replies
-
Hello Good evening, I want to make an inquiry, I have a network file, such as a Word file, a srcipt want me to open it, I can say what the function and an example please.
-
Hi all. I use a FileOpen command to open a text file ,after that I create a GUI (GUICtrlCreateEdit) and I display the first line from the .txt file with GUICtrlSetData ( controlID, data [, default] ) How can I change the size of what I want to display ?
-
I want my script write to a log file. I'm using the following code: #include <File.au3> Local $LogFile = FileOpen(@ScriptDir & "logfilename.log", 1) _FileWriteLog($LogFile, "Script started") FileClose($LogFile) The result is as follows: 1. I have an empty file at @ScriptDirlogfi...
-
Hi Folks, I have a small GUI application that writes to a text file. This is basically the part of the script: $fh = FileOpen("Test.txt", 9) ;Append at the end of the File and create the dir structure if it doesn't exist FilewriteLine($fh, "Bli bla blubb...") ;Write 1 - many lines to the file...
-
Even by reading the Help file I still don't get it when exactly to apply this function, and what happens if I don't use it ? Thanks FileFlush()
-
Hi guys, I've been at this for a little while, so I thought I would turn to the community for what should be a simple answer to my problem. I want to write raw data to a file. Now, when I say raw data, I mean I want to write exactly the bytes I want in the file, not the hex equivalant of the c...