Ŀ
 LD v1.0 (c)2000 J.Tigchelaar (http://ldzip.freeservers.com) 


Description
===========
LD generates two includelists in plane MS-Dos containing all the single files
included by the includelist INCLUDE.LD and excluded by the excludelist
EXCLUDE.LD. All lines in INCLUDE.LD and EXCLUDE.LD can contain long filenames,
short filenames, wildcards and an optional /s for subdirectories.

Before use
==========
Prepare the two textfiles below before using LD:

  INCLUDE.LD - includelist for LD, can contain long filenames, short filenames,
               wildcards and an optional /s for subdirectories.
  EXCLUDE.LD - excludelist for LD, can contain long filenames, short filenames,
               wildcards and an optional /s for subdirectories.

Usage
=====
LD <Includelist>
   <Includelist> = Filename without extension


Result
======
<Includelist>.SFN
    contains all the single short filenames (no wildcards) included by the
    includelist INCLUDE.LD and excluded by the excludelist EXCLUDE.LD.
    (Remark: character ' is converted to "'" to be compatible with LDZIP)

<Includelist>.LFN
    contains all the single long filenames (no wildcards) included by the
    includelist INCLUDE.LD and excluded by the excludelist EXCLUDE.LD.


Requirements
============
MS-Dos 7.0+ (MS-Dos Windows 95+)
FAT16/FAT32 drive


License
=======
See LICENSE.TXT


Contact
=======
WWW:    http://ldzip.freeservers.com
E-mail: ldzip@ldzip.freeservers.com
        ldzip@hotmail.com


===================================================
Below are some samples of INCLUDE.LD and EXCLUDE.LD
===================================================

Sample 1
========
Suppose we want all files in C:\My Documents including all the subdirectories.
  
     INCLUDE.LD
     ----------
     C:\My Documents\*.* /s

     Delete the file EXCLUDE.LD, we do not want to exclude anything.

     
Sample 2
========
Suppose we want all files in C:\My Documents including all the subdirectories.
The short filename of My Documents is MYDOCU~1.

     INCLUDE.LD
     ----------
     C:\MYDOCU~1\*.* /s

     Delete the file EXCLUDE.LD, we do not want to exclude anything.

     
Sample 3
========
Suppose we want all files in C:\My Documents and C:\Program Files, except the
files in the directory C:\Program Files\Common Files.

     INCLUDE.LD
     ----------
     C:\My Documents\*.* /s
     C:\Program Files\*.* /s

     EXCLUDE.LD
     ----------
     C:\Program Files\Common Files\*.* /s


Sample 4
========
Suppose we want all files of the C: drive, except the directory C:\Windows\Temp
and all the .bak and the .tmp files.

     INCLUDE.LD
     ----------
     C:\*.* /s
     
     EXCLUDE.LD
     ----------
     C:\Windows\Temp\*.* /s
     C:\*.bak /s
     C:\*.tmp /s


Sample 5
========
Suppose we want all files of the C: and D: drive, except the C:\*.bak files.
We do want the *.bak files of all other directories.

     INCLUDE.LD
     ----------
     C:\*.* /s
     D:\*.* /s
     
     EXCLUDE.LD
     ----------
     C:\*.bak

