diff --git a/edrawings-api/output/export/index.md b/edrawings-api/output/export/index.md index cdc0caa0..86bc921f 100644 --- a/edrawings-api/output/export/index.md +++ b/edrawings-api/output/export/index.md @@ -37,7 +37,7 @@ Please see below example of parameters * Export all SOLIDWORKS files (matching the filter *.sld*, i.e. extension starts with .sld) from the *SW Drawings* and *SW Models* folders in drive C (including sub folders) to the *C:\EDRW* folder in eDrawings format (.eprt for parts, .easm for assemblies, .edrw for drawing) and html format. ~~~ -> export.exe -input "C:\SW Drawings" "C:\SW Models" -output C:\EDRW -filter *.sld* -format .e .html +> export.exe -input "C:\SW Drawings" "C:\SW Models" -outdir C:\EDRW -filter *.sld* -format .e .html ~~~ * Export *C:\Models\Part.sldprt* into *C:\Models\Part.eprt* diff --git a/visual-basic/algorithms/fso/io/write-binary-file/index.md b/visual-basic/algorithms/fso/io/write-binary-file/index.md index 6dbdae8a..12b9046a 100644 --- a/visual-basic/algorithms/fso/io/write-binary-file/index.md +++ b/visual-basic/algorithms/fso/io/write-binary-file/index.md @@ -12,7 +12,7 @@ The below snippet will overwrite the data in the destination binary file Dim arr(5237) As Byte arr(0) = 12: arr(1) = 1: arr(2) = 0 ... -WriteByteArrToFile("C:\MyFolder\MyFile.dat") +WriteByteArrToFile "C:\MyFolder\MyFile.dat", arr() ~~~ Code will automatically create new file if it doesn't exist.