1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
/* --------------------------------------------------------------------
Project: Communication package Linux-HPx00LX Filer
Module: lxdir.c
Author: A. Garzotto
Started: 28. Nov. 95
Subject: Display directory contents
-------------------------------------------------------------------- */
/* --------------------------------------------------------------------
includes
-------------------------------------------------------------------- */
#include <stdio.h>
#include <stdlib.h>
/* --------------------------------------------------------------------
local includes
-------------------------------------------------------------------- */
#include "pal.h"
#include "palpriv.h"
#include "config.h"
/* --------------------------------------------------------------------
display help
-------------------------------------------------------------------- */
static void help(void)
{
fprintf(stderr, "USAGE: lxdir [options] <directory>\n");
fprintf(stderr, " options: -<n> sets comm port <n>\n");
fprintf(stderr, " -b <baud> sets baud rate to <baud>\n");
exit(1);
}
/* --------------------------------------------------------------------
make DOS directory string
-------------------------------------------------------------------- */
static void makedir(char *dir)
{
char *p = dir;
int hasdot = 0;
int hasstar = 0;
while (*p)
{
if (*p == '/') *p = '\\';
if (*p == '.') hasdot = 1;
if (*p == '*') hasstar = 1;
p++;
}
if (!hasdot && !hasstar)
{
if (p[-1] == '\\')
strcat(dir, "*.*");
else
strcat(dir, "\\*.*");
}
}
/* --------------------------------------------------------------------
M A I N
-------------------------------------------------------------------- */
int main (int argc, char **argv)
{
int stat;
int port = 1;
int speed = DEF_BAUD;
FILERCOM *pFiler;
char dir[256] = "";
int i = 1;
fprintf(stderr, "LXDIR %s by A. Garzotto\n\n", VERSION);
while (i < argc)
{
if (argv[i][0] == '-')
{
switch (argv[i][1])
{
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8': port = argv[i][1] - '0'; break;
case 'B':
case 'b': speed = atoi(argv[++i]); break;
default: help(); break;
}
}
else
strcpy(dir, argv[i]);
i++;
}
if (!*dir) help();
makedir(dir);
if(!(pFiler = FilerConnect(port, speed, &FlCb))) {
fprintf(stderr, "\nUnable to connect to palmtop!\n");
exit(3);
}
stat = FilerAskDir(pFiler, dir);
if (stat == NO_RESPONSE)
fprintf(stderr, "\nServer Not responding.\n");
else if (stat == BAD_REQUEST)
fprintf(stderr, "\nBad request.\n");
else if (stat != SERVER_ACK)
fprintf(stderr, "\nTransmission error.\n");
fprintf(stderr, " Directory of %s:\n\n", dir);
while (1)
{
if(FilerGetDir(pFiler) == CANNOT_GET_ENTRY) break;
if (pFiler->Attribute & 0x10)
fprintf(stderr, "%-12s <DIR> %02d-%02d-%02d %02d:%02d\n",
pFiler->Name,
pFiler->DateStamp.month, pFiler->DateStamp.day,
pFiler->DateStamp.year+80,
pFiler->DateStamp.hour, pFiler->DateStamp.min);
else
fprintf(stderr, "%-12s %12lu %02d-%02d-%02d %02d:%02d\n",
pFiler->Name, pFiler->FileSize,
pFiler->DateStamp.month, pFiler->DateStamp.day,
pFiler->DateStamp.year+80,
pFiler->DateStamp.hour, pFiler->DateStamp.min);
}
FilerDisconnect(pFiler);
exit(0);
}
|