cocoahttpserver - 显示文件

时间:2013-10-11 12:26:19

标签: share nsdocumentdirectory cocoahttpserver

我尝试使用cocoaHttpServer用pc / mac浏览器显示我文档的文件夹文件,我使用iPhoneHTTPServer示例示例,我更改了根目录但是我没有看到任何文件。 这是我的代码:

[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];

我需要创建一个索引文件?但是在这种情况下刷新索引内容我需要从设备而不是浏览器刷新...任何提示?

1 个答案:

答案 0 :(得分:0)

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>

这些必须位于您的网络服务器文档目录中。 我还没有找到一种方法来增强它(看起来更好),并提供了一个基本的实现。至少是一个工作。