php 开源代码文件管理系统哪个好

你下载的是一个类似于asp的链接文件,而不是你原本的文件!需要在服务器端执行后才能到达正确的下载地址,所以最好点击进入网页获得正确的下载地址例如后缀类似于rar的,再使用下载地址,如果不能获取,就可能是服务器出了问题。无法访问了PHP是一种服务器端HTML-嵌入式脚本描述语言。 其最强大和最重要的特征是其数据库集成层,使用它完成一个含有数据库功能的网页是不可置信的简单。在HTML文件中, PHP脚本程序(语法类似于Perl或者c语言)可以使用特别的PHP标签进行引用, 这样网页制作者也不必完全依赖HTML生成网页了。由于PHP是在服务器端执行的, 客户端是看不到PHP代码的。 PHP可以完成任何CGI脚本可以完成的任务,但它的功能的发挥取决于它和各种数据库的兼容性。 PHP除了可以使用HTTP进行通信,也可以使用IMAP, SNMP, NNTP, POP3协议。

Ⅱ 谁有做过企业内部文档管理系统的源代码么。(类似致得文档管理系统)

兄弟 源码可以发分我么谢谢了 [email protected]

Ⅲ 文件管理的代码

一、实验目的 理解文件系统的主要概念及文件系统内部功能和实现过程。 二、实验内容 采用二级文件目录结构,编写程序实现文件系统的文件存储空间的管理、文件的物理结构、目录结构管理和文件操作。 三、实验要求 1、设计一个有m个用户的文件系统,每个用户最多可保存一个文件。 2、规定用户在一次运行中只能打开K个文件。 3、系统能检查键入命令的正确性,出错时应能显示出错原因。 4、对文件应能设置保护措施,如只能执行、允许读、允许写等。 5、对文件的操作设计提供一套文件操作: CREATE建立文件; DELETE删除文件; OPEN打开文件; CLOSE关闭文件; READ读文件; 求用C或C++的程序编写。

Ⅳ oppor7点开文件管理,文档,里面那么多代码能删吗

可以但你不知道那些是有用数据最好不要

Ⅳ 请教:手机文件管理中的文件夹中的文件能否显示中文名称,数字代码实在分辨不出要找的文件。

可以,从设置里进入把原来的消了,重新输入中文。

Ⅵ 操作系统课上做一个文件系统管理,谁能提供下代码供参考

我有以前用过的,应该可以和用 你可以参考下 代码太长我分两部分发吧 ***********文 件管理系统***********/ #include <stdio.h> #include <stdlib.h> /*不容易归类的标准函数库*/ #include <conio.h> #include <string.h> #include <sys\stat.h> #include <fcntl.h> /*非标准文件输入输出操作的代码符号属性*/ #include <dos.h> #include <io.h> int init() /*初始化操作界面函数*/ {int i; clrscr(); gotoxy(23,3);printf("* * * * * * * * * * * * * *"); gotoxy(27,4);printf("FILE MANAGE SYSTEM"); gotoxy(23,5);printf("* * * * * * * * * * * * * *"); gotoxy(23,7);printf("NETWORK033 Cai Guiquan NO.1"); gotoxy(28,9);printf("1--Creat File"); gotoxy(28,10);printf("2--Delete File"); gotoxy(28,11);printf("3--OPen File"); gotoxy(28,12);printf("4--Write File"); gotoxy(28,13);printf("5--Locate File"); gotoxy(28,14);printf("6--Modify File"); gotoxy(28,15);printf("7--Copy File"); gotoxy(28,16);printf("8--Move File"); gotoxy(28,17);printf("9--Cataloge Manage"); gotoxy(28,18);printf("10--Exit File"); gotoxy(25,21); printf("Please Choice:"); scanf("%d",&i); return(i); /*选择相应的序号,执行相应的操作*/ } main() {int x,i,j,flag=1; char name[15],name1[15],name2[40]; char choice,ch; int handle,status; /*定义文件的指针和状态*/ FILE *fp; while(flag) /*初始化系统界面*/ {i=init(); getchar(); switch(i) { case 1:label1: /*创建文件操作*/ clrscr(); gotoxy(27,5);printf("CREAT FILE\n"); for(j=0;j<40;j++) printf("= "); printf("\n\nPlease input the creating file name and routine:\n"); scanf("%s",name); getchar(); handle=creatnew(name,0);/*按指定的文件方式创建文件,若有同名文件返回错误代码*/ if(handle==-1) { printf("\nSorry,the file already exists."); getchar(); printf("\nInput again?(Y or N)"); scanf("%c",&choice);getchar(); if(choice=='Y'||choice=='y') goto label1; } else { printf("\nThe file is created."); printf("Do you now input contentof the file?(Y or N):"); while(1) /*输入创建文件的内容*/ { scanf("%c",&choice); if(choice=='y'||choice=='n'||choice=='Y'||choice=='N') break; else printf("\nError!Please input again!"); } if(choice=='y'||choice=='Y') { printf("\nNow input content to the file(End with '#'):\n\n"); fp=fopen(name,"w");/*把内容存放到fp指向的文件中去*/ ch=getchar(); while(ch!='#') { fputc(ch,fp); ch=getchar(); } fclose(fp);getchar();/*关闭文件*/ } getchar(); break; case 2:label2: /*删除文件的操作*/ clrscr(); gotoxy(25,5);printf("DELETE FILE\n"); for(j=0;j<40;j++) printf("= "); printf("\n\nPlease input the deleting file name and routine:\n"); scanf("%s",name); /*输入要删除的文件名*/ getchar(); printf("\n Are you sure?(Y or N):"); while(1) { scanf("%c",&choice); if(choice=='y'||choice=='n'||choice=='Y'||choice=='N') break; else printf("\nError!Please input again!"); } if(choice=='y'||choice=='Y') {status=access(name,0);/*获取文件的状态,是否存在*/ if(status!=0) {printf("\nSorry the file doesn't exist!"); getchar(); printf("\n\nInput again?(Y or N)"); scanf("%c",&choice);getchar(); if(choice=='Y'||choice=='y') goto label2; } else { status=access(name,02);/*获取文件的状态,是否存在并且是否只读*/ if(status!=0) { printf("\nSorry the file is only read!"); getchar(); } else {unlink(name); /*从目录中删除一个文件函数,该函数在dos.h中*/ printf("\n\ndelete succefully!"); getchar(); } } } getchar(); break; case 3:label3: /*打开文件操作*/ clrscr(); gotoxy(27,5);printf("OPEN FILE\n"); for(j=0;j<40;j++) printf("= "); printf("\n\nPlease input the opening file name and routine:\n"); scanf("%s",name); status=access(name,0);/*获取文件的状态*/ if(status!=0) {printf("\nSorry the file doesn't exist!"); getchar(); printf("\n\nInput again?(Y or N)"); scanf("%c",&choice);getchar(); if(choice=='Y'||choice=='y') goto label3; } else { printf("\nNow begin to read the file:\n"); fp=fopen(name,"r"); ch=fgetc(fp); /*读出文件到内存*/ while(ch!=EOF) {printf("%c",ch); ch=fgetc(fp);j++; } fclose(fp);getchar();/*关闭文件*/ } getchar(); break; case 4:label4: /*写文件操作*/ clrscr(); gotoxy(27,5);printf("WRITE FILE\n"); for(j=0;j<40;j++) printf("= "); printf("\n\nPlease input the writing file name and routine:\n"); scanf("%s",name); status=access(name,0);/*获取name指向的文件状态*/ if(status!=0) {printf("\nSorry the file doesn't exist!"); getchar(); printf("\n\nInput again?(Y or N)"); scanf("%c",&choice);getchar(); if(choice=='Y'||choice=='y') goto label4; } else {fp=fopen(name,"w");/*以写入方式打开name 指向的文件*/ printf("\nPlease input the information(end with '#'):\n"); ch=getchar(); /*重写文件*/ while(ch!='#') { fputc(ch,fp); ch=getchar(); } fclose(fp);getchar();/*关闭文件*/ } getchar(); break; case 5:label5: /*定位文件操作*/ clrscr(); gotoxy(27,5);printf("LOCATE FILE\n"); for(j=0;j<40;j++) printf("= "); printf("\n\nPlease input the locating file name and routine:\n"); scanf("%s",name); status=access(name,0);/*获取name文件指向的文件的状态*/ if(status!=0) {printf("\nSorry the file doesn't exist!"); getchar(); printf("\n\nInput again?(Y or N)"); scanf("%c",&choice);getchar(); if(choice=='Y'||choice=='y') goto label5; } else {printf("\nPlease input the location:"); scanf("%d",&x); handle=open(name,O_CREAT|O_RDWR,S_IREAD|S_IWRITE);/*打开由name指定的文件,name既可以是简单的文件名*/

Ⅶ 跪求一份完整文件管理系统的PHP代码,要求请看问题补充!

你自己都懒的找,我也懒的找

Ⅷ 管理文件的编号怎么编写

(企业字母缩写简称)—(文件类型)—(文件版次)—(文件编号)
如: LX-WI-A0-003 联想公司--作业指导文件--第一版--第三份文件
再如 LX-QR-A1-009 联想公司--表格类文件--第一次修订版--第9份文件

以上为例子,可以改变缩写 只要你明白字母的含义就好

Ⅸ 求树形目录文件管理系统源代码 最好用C#写 java也可以

程序截图