⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 direct.c

📁 ReactOS是一些高手根据Windows XP的内核编写出的类XP。内核实现机理和API函数调用几乎相同。甚至可以兼容XP的程序。喜欢研究系统内核的人可以看一看。
💻 C
字号:
/* ---------- direct.c --------- */

#include <direct.h>
#include <io.h>

#include "dflat.h"

#define DRIVE		1
#define DIRECTORY	2
#define FILENAME	4
#define EXTENSION	8

static char path[MAX_PATH];
static char drive[_MAX_DRIVE] = " :";
static char dir[_MAX_DIR];
static char name[_MAX_FNAME];
static char ext[_MAX_EXT];

/* ----- Create unambiguous path from file spec, filling in the
     drive and directory if incomplete. Optionally change to
     the new drive and subdirectory ------ */
void DfCreatePath(char *path,char *fspec,int InclName,int Change)
{
    int cm = 0;
    char currdir[MAX_PATH];
    char *cp;

	/* save the current directory */
	if (!Change)
		GetCurrentDirectory (MAX_PATH, currdir);

    *drive = *dir = *name = *ext = '\0';
    _splitpath(fspec, drive, dir, name, ext);
    if (!InclName)
        *name = *ext = '\0';
    *drive = toupper(*drive);
    if (*ext)
        cm |= EXTENSION;
    if (InclName && *name)
        cm |= FILENAME;
    if (*dir)
        cm |= DIRECTORY;
    if (*drive)
        cm |= DRIVE;
    if (cm & DRIVE)
        _chdrive(*drive - '@');
    else
	{
        *drive = _getdrive();
        *drive += '@';
    }
    if (cm & DIRECTORY)
    {
        cp = dir+strlen(dir)-1;
        if (*cp == '\\')
            *cp = '\0';
        chdir(dir);
    }
    getcwd(dir, sizeof dir);
    memmove(dir, dir+2, strlen(dir+1));
    if (InclName)    {
        if (!(cm & FILENAME))
            strcpy(name, "*");
        if (!(cm & EXTENSION) && strchr(fspec, '.') != NULL)
            strcpy(ext, ".*");
    }
    else
        *name = *ext = '\0';
    if (dir[strlen(dir)-1] != '\\')
        strcat(dir, "\\");
    memset(path, 0, sizeof path);
    _makepath(path, drive, dir, name, ext);

	if (!Change)
		SetCurrentDirectory (currdir);
}


static int dircmp(const void *c1, const void *c2)
{
    return stricmp(*(char **)c1, *(char **)c2);
}


BOOL DfDlgDirList(DFWINDOW wnd, char *fspec,
                enum DfCommands nameid, enum DfCommands pathid,
                unsigned attrib)
{
    int ax, i = 0;
    struct _finddata_t ff;
    DF_CTLWINDOW *ct = DfFindCommand(wnd->extension,nameid,DF_LISTBOX);
    DFWINDOW lwnd;
    char **dirlist = NULL;

	DfCreatePath(path, fspec, TRUE, TRUE);
	if (ct != NULL)
	{
		lwnd = ct->wnd;
		DfSendMessage(ct->wnd, DFM_CLEARTEXT, 0, 0);

		if (attrib & 0x8000)
		{
			DWORD cd, dr;

			cd = GetLogicalDrives ();
			for (dr = 0; dr < 26; dr++)
			{
				if (cd & (1 << dr))
				{
					char drname[15];

					sprintf(drname, "[%c:\\]", (char)(dr+'A'));
#if 0
                    /* ---- test for network or RAM disk ---- */
                    regs.x.ax = 0x4409;     /* IOCTL func 9 */
                    regs.h.bl = dr+1;
                    int86(DOS, &regs, &regs);
                    if (!regs.x.cflag)    {
                        if (regs.x.dx & 0x1000)
                            strcat(drname, " (Network)");
                        else if (regs.x.dx == 0x0800)
                            strcat(drname, " (RAMdisk)");
                    }
#endif
					DfSendMessage(lwnd,DFM_ADDTEXT,(DF_PARAM)drname,0);
				}
			}
			DfSendMessage(lwnd, DFM_PAINT, 0, 0);
		}
		ax = _findfirst(path, &ff);
		if (ax == -1)
			return FALSE;
		do
		{
            if (!((attrib & 0x4000) &&
                 (ff.attrib & (attrib & 0x3f)) == 0) &&
                 strcmp(ff.name, "."))
			{
                char fname[MAX_PATH+2];
                sprintf(fname, (ff.attrib & FILE_ATTRIBUTE_DIRECTORY) ?
                                "[%s]" : "%s" , ff.name);
                dirlist = DfRealloc(dirlist,
                                    sizeof(char *)*(i+1));
                dirlist[i] = DfMalloc(strlen(fname)+1);
                if (dirlist[i] != NULL)
                    strcpy(dirlist[i], fname);
                i++;
            }
        }
		while (_findnext(ax, &ff) == 0);
		_findclose(ax);
        if (dirlist != NULL)
		{
            int j;
            /* -- sort file/drive/directory list box data -- */
            qsort(dirlist, i, sizeof(void *), dircmp);

            /* ---- send sorted list to list box ---- */
            for (j = 0; j < i; j++)    {
                DfSendMessage(lwnd,DFM_ADDTEXT,(DF_PARAM)dirlist[j],0);
                free(dirlist[j]);
            }
            free(dirlist);
        }
        DfSendMessage(lwnd, DFM_SHOW_WINDOW, 0, 0);
    }
    if (pathid)
	{
        _makepath(path, drive, dir, NULL, NULL);
        DfPutItemText(wnd, pathid, path);
    }
    return TRUE;
}

/* EOF */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -