subuddhi Posted July 5, 2021 Share Posted July 5, 2021 I try from help this example script #include <FileConstants.au3> #include <MsgBoxConstants.au3> #include <StringConstants.au3> Example() Func Example() ; Create a constant variable in Local scope of the message to display in FileSaveDialog. Local Const $sMessage = "Choose a filename." ; Display a save dialog to select a file. Local $sFileSaveDialog = FileSaveDialog($sMessage, "::{450D8FBA-AD25-11D0-98A8-0800361B1103}", "Scripts (*.au3)", $FD_PATHMUSTEXIST) If @error Then ; Display the error message. MsgBox($MB_SYSTEMMODAL, "", "No file was saved.") Else ; Retrieve the filename from the filepath e.g. Example.au3. Local $sFileName = StringTrimLeft($sFileSaveDialog, StringInStr($sFileSaveDialog, "\", $STR_NOCASESENSEBASIC, -1)) ; Check if the extension .au3 is appended to the end of the filename. Local $iExtension = StringInStr($sFileName, ".", $STR_NOCASESENSEBASIC) ; If a period (dot) is found then check whether or not the extension is equal to .au3. If $iExtension Then ; If the extension isn't equal to .au3 then append to the end of the filepath. If Not (StringTrimLeft($sFileName, $iExtension - 1) = ".au3") Then $sFileSaveDialog &= ".au3" Else ; If no period (dot) was found then append to the end of the file. $sFileSaveDialog &= ".au3" EndIf ; Display the saved file. MsgBox($MB_SYSTEMMODAL, "", "You saved the following file:" & @CRLF & $sFileSaveDialog) EndIf EndFunc ;==>Example i test it, write the file name and save it, but the file is not created..what is the wrong? Link to comment Share on other sites More sharing options...
Luke94 Posted July 5, 2021 Share Posted July 5, 2021 All FileSaveDialog does is returns the full path of the selected file. You can then use the return value to write to. For example: expandcollapse popup#include <FileConstants.au3> #include <MsgBoxConstants.au3> #include <StringConstants.au3> Global $sString = 'This is a string.' ; This is what we're going to write to the selected file Example() Func Example() ; Create a constant variable in Local scope of the message to display in FileSaveDialog. Local Const $sMessage = "Choose a filename." ; Display a save dialog to select a file. Local $sFileSaveDialog = FileSaveDialog($sMessage, "::{450D8FBA-AD25-11D0-98A8-0800361B1103}", "Scripts (*.au3)", $FD_PATHMUSTEXIST) If @error Then ; Display the error message. MsgBox($MB_SYSTEMMODAL, "", "No file was saved.") Else ; Retrieve the filename from the filepath e.g. Example.au3. Local $sFileName = StringTrimLeft($sFileSaveDialog, StringInStr($sFileSaveDialog, "\", $STR_NOCASESENSEBASIC, -1)) ; Check if the extension .au3 is appended to the end of the filename. Local $iExtension = StringInStr($sFileName, ".", $STR_NOCASESENSEBASIC) ; If a period (dot) is found then check whether or not the extension is equal to .au3. If $iExtension Then ; If the extension isn't equal to .au3 then append to the end of the filepath. If Not (StringTrimLeft($sFileName, $iExtension - 1) = ".au3") Then $sFileSaveDialog &= ".au3" Else ; If no period (dot) was found then append to the end of the file. $sFileSaveDialog &= ".au3" EndIf Local $hFile = FileOpen($sFileSaveDialog, $FO_OVERWRITE) ; Open the full path (return value) of the FileSaveDialog FileWrite($hFile, $sString) ; Write the string to the file FileClose($hFile) ; Close the file ; Display the saved file. MsgBox($MB_SYSTEMMODAL, "", "You saved the following file:" & @CRLF & $sFileSaveDialog) EndIf EndFunc ;==>Example subuddhi 1 Link to comment Share on other sites More sharing options...
subuddhi Posted July 5, 2021 Author Share Posted July 5, 2021 (edited) thanks for quick reply, yes its work Edited July 5, 2021 by subuddhi Link to comment Share on other sites More sharing options...
mikell Posted July 5, 2021 Share Posted July 5, 2021 1 hour ago, subuddhi said: there is, some 4 character binary and there is some 2 character binary So the easiest way is to use a 2D array (instead of 2 strings) for the $srch and $repl values, and put the StringReplace in a For/Next loop Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now