我尝试使用cocoaHttpServer通过PC/mac浏览器显示我的文档的文件夹文件,我使用iPhone HTTPServer示例示例,我更改了根目录,但没有看到任何文件。这是我的代码:
[DDLog addLogger:[DDTTYLogger sharedInstance]];
httpServer = [[HTTPServer alloc] init];
[httpServer setType:@"_http._tcp."];
NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDir = [documentPaths objectAtIndex:0];
[httpServer setDocumentRoot:documentsDir];
[self startServer];
我需要创建一个索引文件?但在这种情况下,要刷新索引内容,我需要从设备刷新,而不是从浏览器刷新...有什么提示吗?
index.html
文件 :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>DPFileUpload</title>
</head>
<body>
<form action="upload.html" method="post" enctype="multipart/form-data" accept-charset="utf-8"> Select a file to upload :
<input type="file" name="upload1"><br/> <br/>
<input type="submit" value="Submit">
</form>
</body>
</html>
和upload.html
文件:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
%MyFiles%
</body>
</html>
这些需要位于您的 Web 服务器文档目录中。我还没有找到增强它的方法(看起来更好(,只提供了一个基本的实现。至少是一个工作的人。