Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
J
jfxmap_python
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
oscar
jfxmap_python
Commits
19217ddf
Commit
19217ddf
authored
Jan 28, 2022
by
oscar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改遍历目录结构
parent
f8796ad8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
trans_and_export_data_multi.py
script/trans_and_export_data_multi.py
+5
-1
No files found.
script/trans_and_export_data_multi.py
View file @
19217ddf
...
...
@@ -743,7 +743,11 @@ if __name__ == '__main__':
save_json_list
=
[]
dir_pcd_list
=
{}
dirs
=
os
.
listdir
(
origin_root_path
)
dirsAll
=
os
.
listdir
(
origin_root_path
)
dirs
=
[]
for
file_
in
dirsAll
:
if
os
.
path
.
isdir
(
origin_root_path
+
"/"
+
file_
)
==
True
:
dirs
.
append
(
file_
)
for
dir
in
dirs
:
if
os
.
path
.
isdir
(
origin_root_path
+
"/"
+
dir
)
==
False
:
continue
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment