Search found 25 matches: filesystem

Return to advanced search

Re: Copy Directory

Using Windows FileSystem Object, we can copy entire folder with one line of code: oFs:CopyFolder( cSourceFolder\*.*, cDestFolder, lOverWrite ) We need to make sure the destination folder exists and if not create it first. ...
by nageswaragunupudi
Thu Jul 06, 2023 5:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Copy Directory
Replies: 11
Views: 522

Re: Bug in Harbour Descend()

The problem is: without any codepage settings (ie. EN codepage) Descend() is fine but accented chars from filesystem are wrong. With ITWIN (or other codepages I tried) the accented chars from filesystem are right but Descend() is not working. Any solutions will make me happy. ...
by cnavarro
Wed Oct 19, 2022 8:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in Harbour Descend()
Replies: 34
Views: 1766

Re: Bug in Harbour Descend()

The problem is: without any codepage settings (ie. EN codepage) Descend() is fine but accented chars from filesystem are wrong. With ITWIN (or other codepages I tried) the accented chars from filesystem are right but Descend() is not working.

Any solutions will make me happy. :-)
by Enrico Maria Giordano
Wed Oct 19, 2022 7:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in Harbour Descend()
Replies: 34
Views: 1766

Database vs File system storage

Here is a statement: Historically, databases were created when the filesystem provided by the OS were not good enough for the problem at hand. mod harbour changes so much for us FIVEWINNERS. We have our data on a single machine and use it like on a standalone ...
by Otto
Sun Jan 16, 2022 10:25 am
 
Forum: mod_harbour
Topic: Database vs File system storage
Replies: 1
Views: 250

Re: Peer to Peer, NAS and NTX -> CDX

... I already have done all the work with DBU. I am convinced that RDP, DBF and the other formats (xml, doc, xls, jpg, etc. ) and the inclusion of the filesystem of the operating system enable so much that it does not make sense to include an additional layer. Best regards, Otto
by Otto
Sun Jan 03, 2021 3:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Peer to Peer, NAS and NTX -> CDX
Replies: 41
Views: 3487

schedule system

... But after a few weeks, it is somewhere, and the disorder reappears. Nevertheless, I try again. I think it's excellent and flexible to use the filesystem directly without a database. To start, I start with a small program that creates a daily folder for me for the next few years. I virtually ...
by Otto
Fri Jan 31, 2020 10:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: schedule system
Replies: 5
Views: 1318

Re: Mechanism for locking records in a DBF file

Hi, File locks are not stored anywhere. They are kept in memory by the filesystem in the server OS. The dbf headers are always of the same size, they cannot change size because that is not easy to handle among several users. In normal files, a file lock in ...
by Carlos Mora
Sat Apr 20, 2019 5:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mechanism for locking records in a DBF file
Replies: 1
Views: 537

Re: copiar muchisimos archivos de texto

... El tener 500k de entradas en una única carpeta va a hacer TODAS las operaciones lentas, y la vuelve muchísimo más suceptible a fallos del filesystem. Incluso cuando añades un xml nuevo a la carpeta seguramente le tomará bastante más tiempo crear un nuevo archivo porque tiene que buscar ...
by Carlos Mora
Sat May 19, 2018 4:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: copiar muchisimos archivos de texto
Replies: 18
Views: 3597

Re: Enviar archiovo a una dirección URL

This is how to use filesystem in (x)Harbour
Code: Select all  Expand view
oFs   := CreateObject( "Scripting.FileSystemObject" )
oFs:CopyFile( cSource, cDestination )
 
by nageswaragunupudi
Thu Jan 25, 2018 11:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Enviar archiovo a una dirección URL
Replies: 2
Views: 600

Re: eMailDesktop - uses filesystem as database

Dear Mr. Rao,
I didn‘t even know that there is a tool for fulltext search inside bcc\bin folder.
So I can’t tell anything about.
BTW, can you search with grep inside WORD files?
Best regards,
Otto
by Otto
Tue Dec 06, 2016 8:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: eMailDesktop - uses filesystem as database
Replies: 5
Views: 2103

Re: eMailDesktop - uses filesystem as database

May I know in what way fileseek is different from the popular grep? C:\bcc7\bin>grep ? Turbo GREP 5.6 Copyright (c) 1992-2010 Embarcadero Technologies, Inc. Syntax: GREP [-rlcnvidzewoqhu] searchstring file[s] or @filelist Options are one or more option characters preceded by "-", and op...
by nageswaragunupudi
Tue Dec 06, 2016 12:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: eMailDesktop - uses filesystem as database
Replies: 5
Views: 2103

Re: eMailDesktop - uses filesystem as database

Hello, FileSeek is working fine. Calling with Parameter 0 it works without showing a window. FileSeek returns a csv file. Best regards, Otto function suchestarten()    local cPrg := ""    cPrg := 'c:\FileSeek\FileSeek.exe -d "c:\#    DEMODATEN&quo...
by Otto
Fri Dec 02, 2016 1:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: eMailDesktop - uses filesystem as database
Replies: 5
Views: 2103

Re: eMailDesktop - uses filesystem as database

FullTextSearch engine I found a program which looks promising https://www.fileseek.ca . I read in the FAQ that it should be possible to operate from command line. So I think I could pass the search options from FIVEWIN and get back a file with the results. BTW does someone use fileseek. Best regards...
by Otto
Tue Nov 29, 2016 10:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: eMailDesktop - uses filesystem as database
Replies: 5
Views: 2103

eMailDesktop - uses filesystem as database

eMailDesktop Searching for a possibility to store the emails I came to the solution to use the Filesystem (Not a Database!) for schemaless data I found an interesting post. I always love coming to these forums and reading all the heavy database gurus pitching that the ...
by Otto
Mon Nov 28, 2016 11:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: eMailDesktop - uses filesystem as database
Replies: 5
Views: 2103
Next

Return to advanced search