create readme subdirectories when installing app
This commit is contained in:
parent
8607c47b66
commit
26ad423e24
1 changed files with 3 additions and 1 deletions
|
@ -606,7 +606,9 @@ public class BRouterView extends View
|
|||
if ( ze == null )
|
||||
break;
|
||||
String name = ze.getName();
|
||||
FileOutputStream fos = new FileOutputStream( new File( f, name ) );
|
||||
File outfile = new File( f, name );
|
||||
outfile.getParentFile().mkdirs();
|
||||
FileOutputStream fos = new FileOutputStream( outfile );
|
||||
|
||||
for ( ;; )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue