All pastes #2080759 Raw Edit

Miscellany

public text v1 · immutable
#2080759 ·published 2011-09-11 11:07 UTC
rendered paste body

string filescan()
	{
	char [] flist;
	auto scan = new FileScan;
	scan (".", ".d");
	
	foreach(file; scan.files)
	{
	flist[]++ = file; // I need to move all files in array!
	}


	return flist;
	
	}