Search found 29 matches: filecopy

Return to advanced search

Re: Backup from inside FWH program

I use Goodsync for my external backups.

I think that I will use FW filecopy to copy the desired files to a backup location. If the Link should be found... Please let me know. I thought it was from mr. Rao
by Marc Venken
Wed Aug 31, 2022 6:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Backup from inside FWH program
Replies: 17
Views: 1485

Re: ot:preservar la fecha y hora de creacion de un archivo

Karinha muchas gracias la funcion
FILECOPY(<cSourceFile>, <cTargetFile>, [<lBackup>]) --> nCopyByte

hace el milagro es de la hbct
ya comentare como me fue con esto
muchas gracias a todos por au ayuda

Wilson
by wilsongamboa
Tue Mar 22, 2022 1:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ot:preservar la fecha y hora de creacion de un archivo
Replies: 7
Views: 670

Re: ot:preservar la fecha y hora de creacion de un archivo

...    FILECOPY(<cSourceFile>, <cTargetFile>, [<lMode>]) --> nCopyByte  https://vivaclipper.wordpress.com/2013/06/07/filecopy-function/ ...
by karinha
Mon Mar 21, 2022 7:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ot:preservar la fecha y hora de creacion de un archivo
Replies: 7
Views: 670

Re: CopyFIle()

... 7 de 32 anda perfecto todo pero en un 10 de 64 no anda pero solo cuando en el medio del nombre del directorio de destino hay espacios. Hago esto: FileCopy( "Origen.pdf", "C:\APPS\ Wps Gestion Bin \PDF\Destino.pdf") El problema esta en la parte en negrita, si no tuviera blancos ...
by Jorge Jaurena
Thu Dec 20, 2018 11:57 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: CopyFIle()
Replies: 6
Views: 1368

Re: CopyFIle()

Intenta asi, usando FILECOPY(): #include "FiveWin.ch"FUNCTION Main()   LOCAL cSourceFile := "C:\FWH1701\SAMPLES\TUTOR04.PRG"   LOCAL cTargetFile := "C:\TEMP\TURO04.TXT"  ...
by karinha
Wed Dec 19, 2018 4:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CopyFIle()
Replies: 6
Views: 1368

Re: filecopy not run

... field it must save the new connection ie. \ images \ image.png To copy the image file from the computer to the folder. \ Images \ I tried the filecopy () function but there are problems and last night I found in the folder fivewin (gallery) a procedure called copyfiles that seems to work better ...
by Silvio.Falconi
Sat Sep 08, 2018 9:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: filecopy not run
Replies: 2
Views: 655

Re: filecopy not run

Silvio,

I'm using path-vars.
Never noticed any problem

c_path := cFilePath(GetModuleFileName( GetInstance() ) ) // Main-path
c_path1 := c_path + "IMAGES\"
c_path2 := c_path + "CAPTURES\"

oImage:LoadBmp( c_path1 + cImage )


regards
Uwe :D
by ukoenig
Sat Sep 08, 2018 8:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: filecopy not run
Replies: 2
Views: 655

filecopy not run

i made
cImgPath := ".\images\"
Filecopy( lfn2sfn(rtrim(EL->ELIMGLIB)), cImgPath+cFileLib)

sometimes save the file but many times not save any files

any solution ?
by Silvio.Falconi
Fri Sep 07, 2018 4:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: filecopy not run
Replies: 2
Views: 655

Re: Script Question

Jeff,

I am curious, what is the advantage of compiling code such as this to .hrb vs just making the call to FileCopy() directly? I realize FileCopy() here is likely just an example, but I'm trying to understand the why of this.

Robb
by rhlawek
Fri Apr 20, 2018 1:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Script Question
Replies: 9
Views: 1537

Re: Script Question

Maybe this function is not included in your exe.

Try to include an EXTERNAL FileCopy in your main program.
by vilian
Thu Apr 19, 2018 9:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Script Question
Replies: 9
Views: 1537

Script Question

I am using the scripts ability with harbour and FWH via the Execute(code) function. I get an error when I try to use the FileCopy() function in my program (see code below). Any ideas why I get this error: "Error description: Error BASE/6101 Unknown or unregistered symbol: FILECOPY" ...
by Jeff Barnes
Thu Apr 19, 2018 8:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Script Question
Replies: 9
Views: 1537

Re: Mr. Rao's samples collection.

... on some more improvements : A msgmeter is included ( better speed ) shows the download / import -status A new Col-color to show the active index Filecopy : Just download from the forum once and copy the result to the needed files 1 - 7 there You have only to define filters, authors, like .... ...
by ukoenig
Sun Mar 04, 2018 11:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao's samples collection.
Replies: 139
Views: 21713

Re: funciones de FWH y Harbour en un archivo .txt

... File(<cFileSpec>)->lExist FileAttr([<cFileName>])->nAttributes FileCopy(<cSourceFile>,<cTargetFile>,[<lBackup>])->nBytesCopied FileDate([<cFileName>])->dDate FileDelete(<cFileMask>,[<nAttributes>])->lDeleted ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5731

Re: funciones de FWH y Harbour en un archivo .txt

... FieldDeci FieldGet FieldGetArr FieldLen FieldName FieldNum FieldPos FieldPos FieldPut FieldPutArr FieldSize FieldType FieldWBlock File FileAttr FileCopy FileDate FileDelete FileMove FileReader FileScreen FileSize FileStats FileStr FileTime FileValid FileWriter FKLabel FKMax FLineCount FLock ...
by carlos vargas
Sat Oct 21, 2017 8:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5731

Re: COPY FILE issue

You might try
COPY FILE (cSource) TO (cDest)
or maybe
filecopy( cSource, cDest )
by Gale FORd
Wed May 04, 2016 3:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: COPY FILE issue
Replies: 9
Views: 1206
Next

Return to advanced search