Skip to content

Commit

Permalink
container path
Browse files Browse the repository at this point in the history
  • Loading branch information
skardani committed Jun 5, 2019
1 parent 407e78d commit 6790fec
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -409,11 +409,12 @@ public static List<Container> createContainerList(int brokerId, int containersNu
public static List<ContainerCloudlet> createContainerCloudletList(int brokerId, int numberOfCloudlets)
throws FileNotFoundException {
String inputFolderName = ContainerCloudSimExample1.class.getClassLoader().getResource("workload/planetlab").getPath();

java.io.File inputFolder1 = new java.io.File("modules/cloudsim-examples/src/main/resources/workload/planetlab/");
ArrayList<ContainerCloudlet> cloudletList = new ArrayList<ContainerCloudlet>();
long fileSize = 300L;
long outputSize = 300L;
UtilizationModelNull utilizationModelNull = new UtilizationModelNull();
java.io.File inputFolder1 = new java.io.File(inputFolderName);
java.io.File[] files1 = inputFolder1.listFiles();
int createdCloudlets = 0;
for (java.io.File aFiles1 : files1) {
Expand Down

0 comments on commit 6790fec

Please # to comment.