blob: f9060287f30f19b9a53d3874e61563e96cfc49db [file] [log] [blame] [edit]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
use std::fs;
#[fuchsia::component]
fn main() {
let paths = fs::read_dir("/root_pkg").unwrap();
for path in paths {
println!("{}", path.unwrap().path().display())
}
}