package main
import (
"bufio"
"fmt"
"net/http"
"os"
"strings"
)
func checkDirectory(url string, direcotry string, showNotFound bool) {
fullURL := fmt.Sprintf("%s/%s", url, direcotry)
response, err := http.get(fullURL)
if err != nil {
fmt.Printf("Error: %v\n", err)
return
}
defer...
- Sky
- 主题
-
开源程序
- 回复: 1
- 论坛: 源码共享