aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/cmd_ls.c
blob: 7e92db66f679fa959f817e1e553e5b3e519ab2bf (plain) (blame)
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
#include "buf.h"
#include "core.h"

#include "libcmd/cmd.h"
#include "libcmd/cmd_parse.h"

extern file_t *g_file;
extern buf_t *g_buf;
extern int g_flags;

int c_ls( cmd_arg_t *arg )
{
	int argc = arg->argc;
	//char **argv = arg->argv;
	uint8_t **f_ls = NULL;
	int i=0;

	if (argc > 0)
	{
		printf("Plz dont use arguments\n");
		return -1;
	}

	f_ls = dir_list("./");
	if ( f_ls == NULL )
	{
		printf("Cannot list current directory\n");
		return -1;
	}

	i = 0; 
	while ( f_ls[i] != NULL )
	{
		printf("%s\n",f_ls[i]);
		free( f_ls[i] );
		i++;
	}
	free( f_ls );

	return 0;
}

int h_ls( cmd_arg_t *arg )
{
	printf(" - list files in current directory");
	return 0;
}