Search found 3273 matches: copy

Return to advanced search

Resuelto : hbmk2 no encuentra el archivo C0W32.OBJ

... 'C0W32.OBJ' hbmk2[compiler]: Error: Running linker. 2 ilink32.exe @C:\Users\Albeiro\AppData\Local\Temp\6brk2h.lnk e:\Proyectos\Software\Optica>copy opticabcc.exe e:\Sistemas\optica\opticabcc.exe El sistema no puede encontrar el archivo especificado. . *************** * FINAL *************** ...
by albeiroval
Mon Nov 11, 2024 5:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Resuelto : hbmk2 no encuentra el archivo C0W32.OBJ
Replies: 3
Views: 151

Re: Copy file by mask

I'm not expert with codepages at all, sorry. :-(

Not necessary.
There is a lot you can help me.
And I am looking forward to it.

Please wait. I will make another very simple test program.
by nageswaragunupudi
Thu Nov 07, 2024 2:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 550

Re: Copy file by mask

nageswaragunupudi wrote:There is a reason for me to seek help of Experts like Mr. Enrico.


I'm not expert with codepages at all, sorry. :-(
by Enrico Maria Giordano
Thu Nov 07, 2024 2:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 550

Re: Copy file by mask

So far, everything is working well. I had a few problematic files and they all copied fine.
by Natter
Thu Nov 07, 2024 1:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 550

Re: Copy file by mask

Rao, Enrico - thanks, I learned how to copy such files (for xHarbour). The approximate scheme is as follows I don't think so. Brfore I discuss this in more detail, a few points. Results of OemToAnsi() and AnsiToOem() differ from country to country. ...
by nageswaragunupudi
Thu Nov 07, 2024 1:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 550

Re: Copy file by mask

I get that error using Harbour, not xHarbour.

I am extremely sorry.
We need to keep these REQUESTs before Main()

Code: Select all  Expand view
REQUEST HB_CODEPAGE_DEWIN
REQUEST HB_CODEPAGE_RU1251
REQUEST HB_CODEPAGE_TRWIN
REQUEST HB_CODEPAGE_UTF8
 

I normally keep REQUESTS for many codepages in my main module.
by nageswaragunupudi
Thu Nov 07, 2024 1:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 550

Re: Copy file by mask

Rao, Enrico - thanks, I learned how to copy such files ( for xHarbour ). The approximate scheme is as follows itm:=cGetFile()if ! file (itm)   for st=1 to len(itm)      ++cnt      if IsUTF8(substr(itm,st,2))  ...
by Natter
Thu Nov 07, 2024 1:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 550

Re: Copy file by mask

So it doesn't work Natter?
¿Entonces no funciona Natter?

Code: Select all  Expand view

REM NATTER.BAT

ECHO ON
CLS

COPY C:\TMP\*.TXT C:\TESTE3\ /Y

DIR C:\TESTE3

Echo .
Echo * PERFECT *
 


Regards, saludos.
by karinha
Thu Nov 07, 2024 12:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 550

Re: Copy file by mask

I get that error using Harbour, not xHarbour.
by Enrico Maria Giordano
Thu Nov 07, 2024 11:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 550

Re: Copy file by mask

As I already said, I created with Harbour but not xHarour for more than one reason. 1) xHarbour does not support "RU1251". That is the error you are getting. We may omit element no.3 from the two arrays, viz., aFiles and cdp. 2) xHarbour can not create with this kind of filenames. This is ...
by nageswaragunupudi
Thu Nov 07, 2024 11:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 550

Re: Copy file by mask

Seeking guidance from Experts. I created files, with names encoded with different codepages like this using Harbour. (not xHarbour) function NatCreate()   local aFiles := { "Own", Chr(196)+Chr(197)+Chr(198), Chr(196)+Chr(197)+Chr(19...
by Enrico Maria Giordano
Thu Nov 07, 2024 8:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 550

Re: Copy file by mask

Such a feature has emerged. Functions like filecopy() work fine if there is no '*' character in the file name.
CMD copy and xcopy allow you to copy files with the '*' symbol in the name, but only if all folder names in the path to the file are in Latin
by Natter
Thu Nov 07, 2024 8:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 550

Re: Copy file by mask

Now, I tried to build the same code with xHarbour and this is the result.

Image

I request guidance as to how should I write this function with xHarbour to display correct filenames and copy them
by nageswaragunupudi
Thu Nov 07, 2024 4:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 550

Re: Copy file by mask

Now, with this function I read the directory, display and then copy to another folder. function NatRead()   local cSrcDir  := "c:\natfiles\src\"   local cDstDir  := "c:\natfiles\dst\"   local aFiles   local cmd   FW_SetUnicode( ...
by nageswaragunupudi
Thu Nov 07, 2024 4:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 550

Re: Copy file by mask

Seeking guidance from Experts. I created files, with names encoded with different codepages like this using Harbour. (not xHarbour) function NatCreate()   local aFiles := { "Own", Chr(196)+Chr(197)+Chr(198), Chr(196)+Chr(197)+Chr(198...
by nageswaragunupudi
Thu Nov 07, 2024 4:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy file by mask
Replies: 24
Views: 550
Next

Return to advanced search