代码搜索:drive 有哪些应用?
找到约 10,000 项符合「drive 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/273840/10899231
pad 5_1.pad
PAD Specification File
***************************
PART TYPE: LCMXO640C
SPEED GRADE: 3
PACKAGE: TQFP144
Package: Version 1.13, Status: FINAL
Fri Jul 07 14:18:45 2006
www.eeworm.com/read/273840/10899275
pad uart.pad
PAD Specification File
***************************
PART TYPE: LCMXO640C
SPEED GRADE: 3
PACKAGE: TQFP144
Package: Version 1.13, Status: FINAL
Fri Jul 07 14:18:45 2006
www.eeworm.com/read/273225/10922478
cpp dis.cpp
//禁止与打开驱动器 2003-4-29
#include "dos.h"
#include "ctype.h"
#include "stdio.h"
int dis_drv(char drive)
{
char drv=toupper(drive);
REGS regs;
SREGS sregs;
regs.h.dl = drv-'A';
www.eeworm.com/read/418731/10931871
txt change the storage location of 'my documents', a bit safer for when your pc crashes....txt
I just found out about this today, and I use Windows XP for some time now, so i guess there are others out there who don't know about this yet.
But normally windows saves the "My Documents" folder
www.eeworm.com/read/272861/10939386
txt 新建 文本文档 (2).txt
命令
功能
用法
DIR
显示磁盘文件目录
DIR[DRIVE:] [PATH]
MD
建立子目录
MD[DRIVE:] NEWPATH
CD
改变当前目录
CD[DRIVE:] NEWPATH
RD
删除一个空目录
RD[DRIVE:] PATH
PATH
规定文件的搜索路经
一般在AUTOEXEC.BAT中
www.eeworm.com/read/417462/10988394
c bdos.c
#include
#include
void main(void)
{
int drive;
drive = bdos(0x19, 0, 0);
printf("Current drive is %c\n", 'A' + drive);
}