有人知道做这个的程序吗?
基本上你的电脑上有一个文件夹
和里面的子文件夹
可能会有更多的子文件夹
其中的一些文本文件名+图像
是否有一个程序可以复制所有的结构层次结构,以便我可以将其导入像workflowy这样的程序中?
示例文件结构:

示例粘贴导致工作流/动态主义者

示例粘贴结果为.txt文件

或者有人知道我可以用什么资源来写这个剧本?
发布于 2017-06-10 06:02:06
windows命令:tree /A /F > temp.txt非常接近您所要求的内容。
| temp.txt
|
+---build
| __init__.py
|
+---lib
| | activex.py
| | activexwrapper.py
| | anchors.py
| | busy.py
| | buttonpanel.py
| | buttons.py
| | calendar.py
| | CDate.py
| | ClickableHtmlWindow.py
| | colourdb.py
| | colourselect.py
| | colourutils.py
| | combotreebox.py
| | customtreectrl.py
| | delayedresult.py
| | dialogs.py
| | docview.py
| | dragscroller.py
| | embeddedimage.py
| | eventStack.py
| | eventwatcher.py
| | evtmgr.py
| | expando.py
| | fancytext.py
| | filebrowsebutton.py
| | flashwin.py
| | flashwin_old.py
| | flatnotebook.py
| | floatbar.py
| | foldmenu.py
| | foldpanelbar.py
| | gestures.py
| | graphics.py
| | gridmovers.py
| | grids.py
| | hyperlink.py
| | iewin.py
| | iewin_old.py
| | imagebrowser.py
| | imageutils.py
| | infoframe.py
| | inspection.py
| | intctrl.py
| | itemspicker.py
| | langlistctrl.py
| | layoutf.py
| | msgpanel.py
| | multisash.py
| | mvctree.py
| | myole4ax.idl
| | myole4ax.tlb
| | newevent.py
| | nvdlg.py
| | pdfwin.py
| | pdfwin_old.py
| | platebtn.py
| | plot.py
| | popupctl.py
| | printout.py
| | progressindicator.py
| | pydocview.py
| | pyshell.py
| | rcsizer.py
| | resizewidget.py
| | rightalign.py
| | rpcMixin.py
| | scrolledpanel.py
| | sheet.py
| | shell.py
| | sized_controls.py
| | softwareupdate.py
| | splashscreen.py
| | splitter.py
| | statbmp.py
| | stattext.py
| | throbber.py
| | ticker.py
| | ticker_xrc.py
| | utils.py
| | wordwrap.py
| | wxcairo.py
| | wxPlotCanvas.py
| | wxpTag.py
| | __init__.py
| |
| +---agw
| | | advancedsplash.py
| | | aquabutton.py
| | | artmanager.py
| | | balloontip.py
| | | buttonpanel.py
| | | cubecolourdialog.py
| | | customtreectrl.py
| | | flatmenu.py
| | | flatnotebook.py
| | | floatspin.py
| | | fmcustomizedlg.py
| | | fmresources.py
| | | foldpanelbar.py
| | | fourwaysplitter.py
| | | genericmessagedialog.py
| | | gradientbutton.py
| | | hyperlink.py
| | | hypertreelist.py
| | | infobar.py
| | | knobctrl.py
| | | labelbook.py
| | | multidirdialog.py
| | | peakmeter.py
| | | piectrl.py
| | | pybusyinfo.py
| | | pycollapsiblepane.py
| | | pygauge.py
| | | pyprogress.py
| | | rulerctrl.py
| | | shapedbutton.py
| | | shortcuteditor.py
| | | speedmeter.py
| | | supertooltip.py
| | | thumbnailctrl.py
| | | toasterbox.py
| | | ultimatelistctrl.py
| | | xlsgrid.py
| | | zoombar.py
| | | __init__.py
| | |
| | +---aui
| | | auibar.py
| | | auibook.py
| | | aui_constants.py
| | | aui_switcherdialog.py
| | | aui_utilities.py
| | | dockart.py
| | | framemanager.py
| | | tabart.py
| | | tabmdi.py
| | | __init__.py
| | |
| | +---data
| | | default_help_text.html
| | | ShortcutEditor_1.png
| | | ShortcutEditor_1_thumb.png
| | | ShortcutEditor_2.png
| | | ShortcutEditor_2_thumb.png
| | | ShortcutEditor_3.png
| | | ShortcutEditor_3_thumb.png
| | | ShortcutEditor_4.png
| | | ShortcutEditor_4_thumb.png
| | |
| | +---persist
| | | persistencemanager.py
| | | persist_constants.py
| | | persist_handlers.py
| | | __init__.py
| | |
| | \---ribbon
| | art.py
| | art_aui.py
| | art_default.py
| | art_internal.py
| | art_msw.py
| | art_osx.py
| | bar.py
| |发布于 2017-06-11 03:05:50
在一个半相关的答案上,我找到了一个程序,它也能以不同的方式实现我想做的事情。
https://alternativeto.net/software/filelist-creator/
基本上,它创建一个excel或.txt文件,为每个名称创建一个完整的folderpath目录,这并不难处理。
所以我也可以用这个来格式化数据。
https://softwarerecs.stackexchange.com/questions/42903
复制相似问题