Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Windowsがサイズ、ファイル数、フォルダー数などのプロパティを提供するため、ターミナルでフォルダー(サブフォルダーを含む)のプロパティを表示する方法....
やりたいことすべてに個別のコマンドがあります。例えば:
全体の大きさ:
du -hc FOLDER
ファイル数:
find FOLDER -maxdepth 1 -type f | wc -l
フォルダ数:
find FOLDER -maxdepth 1 -type d | wc -l
通常、同じことを達成する方法は複数あります。
I need to convert from List<Object> to String[].
List<Object>
String[]
I made:
List<Object> lst ... String arr = lst.toString();
But I got this