|
| 1 | +/* |
| 2 | + * Copyright 2019 Google LLC |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +// [START functions_concepts_filesystem] |
| 18 | +import java.io.File; |
| 19 | +import java.io.IOException; |
| 20 | +import java.io.PrintWriter; |
| 21 | +import javax.servlet.http.HttpServletRequest; |
| 22 | +import javax.servlet.http.HttpServletResponse; |
| 23 | + |
| 24 | +public class FileSystem { |
| 25 | + |
| 26 | + // Lists the files in the current directory. |
| 27 | + public void listFiles(HttpServletRequest request, HttpServletResponse response) |
| 28 | + throws IOException { |
| 29 | + File curDir = new File("."); |
| 30 | + File[] files = curDir.listFiles(); |
| 31 | + PrintWriter writer = response.getWriter(); |
| 32 | + writer.write("Files: \n"); |
| 33 | + for (File f : files) { |
| 34 | + writer.write(String.format("\t%s\n", f.getName())); |
| 35 | + } |
| 36 | + } |
| 37 | +} |
| 38 | + |
| 39 | +// [END functions_concepts_filesystem] |
0 commit comments