登录
首页 » 其他项目 » 基本功能: 一次上传多个文件。 允许得到上传的文件的原文件名,并可以将文件改名存入服务器。 允许设定每次上传文件的总大小,和单个文件的文件大小。 可以设定只被允...

基本功能: 一次上传多个文件。 允许得到上传的文件的原文件名,并可以将文件改名存入服务器。 允许设定每次上传文件的总大小,和单个文件的文件大小。 可以设定只被允...

于 2022-01-25 发布 文件大小:106.86 kB
0 251
下载积分: 2 下载次数: 1

代码说明:

基本功能: 一次上传多个文件。 允许得到上传的文件的原文件名,并可以将文件改名存入服务器。 允许设定每次上传文件的总大小,和单个文件的文件大小。 可以设定只被允许文件后缀名列表。 可以设定只被允许的文件类型列表。(注:从文件格式分析,比只分析后缀名更加准确。) 可以设定是否覆盖服务器上同名文件。 可以将所有文件上传到一个文件夹,也可以程序员的需求将文件分类存入不同文件夹。-basic functions : a multiple files to upload. Allowing the documents to be uploaded to the original file name and file name can be credited to the server. Upload allow each document set the total size of individual files and the file size. Can only be allowed to set the file extension from the list. Can only be allowed to set the file type list. (Note : file format, rather than suffix analysis more accurate.) Whether the coverage can set the server name on the document. All documents can be uploaded to a folder, programmers can also demand documents classified into different folders.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 实现对INI文件的读写
    实现对INI文件的读写-realization of the right to read and write INI file
    2022-01-22 01:47:33下载
    积分:1
  • 网页游戏斗地主onWeb v2008 build 1005 网页游戏斗地主onWeb v2008 build 1005...
    网页游戏斗地主onWeb v2008 build 1005 网页游戏斗地主onWeb v2008 build 1005-Web Game斗地主onWeb v2008 build 1005 Web Game斗地主onWeb v2008 build 1005
    2022-10-04 20:35:03下载
    积分:1
  • Application Wizard has been created for you this UserInterface applications. Thi...
    应用程序向导已为您创建了这个 UserInterface 应用程序。此应用程序不仅演示 Microsoft 基础类的基本使用方法,还可作为您编写应用程序的起点。 本文件概要介绍组成 UserInterface 应用程序的每个文件的内容。 -Application Wizard has been created for you this UserInterface applications. This application not only the demonstration of Microsoft based on basic use, but also to write applications as your starting point. This document outlines the composition of applications UserInterface the contents of each file.
    2022-01-26 07:20:01下载
    积分:1
  • 利用Visual Basic编写的小程序,一款模拟扫雷的小游戏。
    利用Visual Basic编写的小程序,一款模拟扫雷的小游戏。-The use of Visual Basic procedures for the preparation of a small, a simulation game of mine.
    2022-07-02 09:57:22下载
    积分:1
  • WTL字体类示范代码
    WTL字体类示范代码-WTL font type model code
    2022-01-26 04:18:40下载
    积分:1
  • 液晶模组7920ic来控制64路模块实现密码锁的功能初始化显示请输入密码...
    液晶模组7920ic来控制64路模块实现密码锁的功能初始化显示请输入密码-LCD Module 7920ic to control module 64 to achieve lock function to initialize display Please enter your password******
    2022-03-17 03:22:56下载
    积分:1
  • multithreading source document search
    多线程文件搜索源程序-multithreading source document search
    2022-04-02 03:50:44下载
    积分:1
  • dos Directory is a comprehensive basis of hope downloading
    dos基础教程 很全面的 希望大家下载-dos Directory is a comprehensive basis of hope downloading
    2022-03-03 14:58:51下载
    积分:1
  • 一个很好的用java编写的论坛,可以作为开发者的参考
    一个很好的用java编写的论坛,可以作为开发者的参考-with a good java prepared by the forum can serve as a reference developers
    2022-02-01 10:16:19下载
    积分:1
  • [输入] 图的顶点个数N,图中顶点之间的关系及起点A和终点B [输出] 若A到B无路径,则输出“There is no path” 否则输出A到B路...
    [输入] 图的顶点个数N,图中顶点之间的关系及起点A和终点B [输出] 若A到B无路径,则输出“There is no path” 否则输出A到B路径上个顶点 [存储结构] 图采用邻接矩阵的方式存储。 [算法的基本思想] 采用广度优先搜索的方法,从顶点A开始,依次访问与A邻接的顶点VA1,VA2,...,VAK, 访问遍之后,若没有访问B,则继续访问与VA1邻接的顶点VA11,VA12,...,VA1M,再访问与VA2邻接顶点...,如此下去,直至找到B,最先到达B点的路径,一定是边数最少的路径。实现时采用队列记录被访问过的顶点。每次访问与队头顶点相邻接的顶点,然后将队头顶点从队列中删去。若队空,则说明到不存在通路。在访问顶点过程中,每次把当前顶点的序号作为与其邻接的未访问的顶点的前驱顶点记录下来,以便输出时回溯。 #include int number //队列类型 typedef struct{ int q[20] -[imported] map of the number of vertices N, Vertex map of the relationship between the starting point and end point A and B [output] if A to B without path then exporting "There is no path" Otherwise output A to B on the path vertices [storage structure] plan adopted adjacency matrix of storage. [Algorithm for the basic idea] BFS way from the vertex A, A visit followed with adjacent vertices VA1, VA2 ,..., VAK, visiting times, if not visit B, continue to visit with the VA1 adjacent vertices VA11, VA12 ,..., VA1M. VA2 and then
    2022-01-25 22:50:29下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载