We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sample/sample.pyにおいて、デフォルトの検索パスに以下のような設定が行われています。
os.environ.setdefault('SSC_SEARCH_PATH', os.path.join(os.getcwd()))
これによって、カレントディレクトリが検索パスになりますが、その際、Windowsでは「C:\current_dir」のようなパス名になります。
C:\current_dir
一方、utils.pyの中ではこの環境変数を文字':'でsplitしているため、[C, current_dir]のように検索パスが壊れてしまいます。 それによって、それらのパスにos.listdirを適用してディレクトリのファイル一覧をとってくるところで以下のようなエラーが出力され、プログラムが異常終了します。
':'
C
current_dir
os.listdir
WindowsError: [Error 3] 指定されたパスが見つかりません。: u'C\\*.*'
この問題を解決するには、以下の選択肢が考えられます:
方針として1. もしくは2. が採用されるのであれば、私の方で修正し、pull requestを提出しようと思います。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
sample/sample.pyにおいて、デフォルトの検索パスに以下のような設定が行われています。
これによって、カレントディレクトリが検索パスになりますが、その際、Windowsでは「
C:\current_dir
」のようなパス名になります。一方、utils.pyの中ではこの環境変数を文字
':'
でsplitしているため、[C
,current_dir
]のように検索パスが壊れてしまいます。それによって、それらのパスに
os.listdir
を適用してディレクトリのファイル一覧をとってくるところで以下のようなエラーが出力され、プログラムが異常終了します。この問題を解決するには、以下の選択肢が考えられます:
方針として1. もしくは2. が採用されるのであれば、私の方で修正し、pull requestを提出しようと思います。
The text was updated successfully, but these errors were encountered: